home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2006 February
/
PCWorld_2006-02_cd.bin
/
software
/
topware
/
pspad
/
pspad450inst_cz.exe
/
{app}
/
Template
/
Delphi console application.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2003-08-14
|
882b
|
28 lines
{ *************************************************************************** }
{ }
{ Created by: }
{ Short description }
{ Last update: 31.10.2001 }
{ Copyright ... }
{ }
{ *************************************************************************** }
program MyProg;
{$APPTYPE CONSOLE}
uses Classes, Windows, SysUtils;
{ variable definition here }
var
function Init()
begin
{ init kode here or delete it :-) }
end;
begin
Init;
{ program code here }
end;